home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / opengl / utilities / isfast / libisfast / isfast.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  496 b   |  28 lines

  1. /*****************************************************************************
  2.  * isfast - routines for *subjective* tests of OpenGL performance
  3.  *****************************************************************************/
  4.  
  5.  
  6.  
  7. #ifndef __ISFAST_H__
  8. #define __ISFAST_H__
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13.  
  14.  
  15. int DepthBufferingIsFast(void);
  16. int ImmediateModeIsFast(void);
  17. int StencillingIsFast(void);
  18. int TextureMappingIsFast(void);
  19.  
  20.  
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* !__ISFAST_H__ */
  26.  
  27.  
  28.